home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Super Platinum 8
/
Shareware Super Platinum 8.iso
/
mac
/
PROGTOOL
/
FGL304D.ZIP;1
/
EXBAS.ARJ
/
FGDOC
/
EXAMPLES
/
BASIC
/
14-13.BAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
BASIC Source File
|
1994-01-24
|
380 b
|
21 lines
REM $INCLUDE: 'fastgraf.bi'
DEFINT A-Z
DIM AuxCode AS STRING*1
DIM KeyCode AS STRING*1
Status = FGinitjoy(1)
Status = FGinitjoy(2)
WHILE INKEY$ = ""
FGintjoy 1, KeyCode, AuxCode
PRINT USING "1: ## ##"; ASC(KeyCode), ASC(AuxCode)
FGintjoy 2, KeyCode, AuxCode
PRINT USING "2: ## ##"; ASC(KeyCode), ASC(AuxCode)
PRINT
FGwaitfor 9
WEND
END